home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00004_Sample Scripts.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  1.4 KB  |  50 lines

  1. -- --
  2. -- -- Main Scripts
  3. -- --
  4. --
  5. -- -- the following scripts must be copied internally for all activities and uncommented
  6. --
  7. --on startMovie
  8. --      startLib ()
  9. --  
  10. --      -- feel free to add your own startMovie code here.
  11. --end
  12. --
  13. --
  14. --on stopMovie
  15. --      stopLib ()
  16. --  
  17. --      -- feel free to add your own stopMovie code here.
  18. --end
  19. --
  20. --
  21. -- -- initialize the activity.  should be called on the "init" frame.  
  22. -- -- If we are using a template, the movie will jump to the "play" frame. 
  23. --
  24. --on initActivity 
  25. --      initActivityLib (#MatchGame)  
  26. --      -- place the correct activity type in parentheses.
  27. --  
  28. --      -- possible activity types:
  29. --      -- #SinglePoint
  30. --      -- #DragDropStick
  31. --      -- #DragDropHide
  32. --   -- #ClickIdentify
  33. --      -- #MatchGame
  34. --      -- #NonStandard  -- you are making a custom activity.
  35. --   -- #DragDropColor  -- drag drop changes state of targets until all targets are changed.
  36. --   -- #DirectionArrows
  37. --   -- #StdPaint
  38.  
  39.  
  40. -- -- Activity Modification Scripts will be placed here.
  41. -- -- look for possibilities and documentation in the movie script called "Global Scripts for Integration"
  42.  
  43.  
  44. --      initializeRound ([command])  -- this should be the last call in this handler.
  45. --  -- pass command #playControl to retain control of when to go to the "play" frame.
  46. --  -- otherwise do not pass a command.
  47. --  -- only use this command with drag and drop!  not c & i and not single point!
  48. --  -- do not call initializeRound with #StdPaint.
  49. --end
  50.